curl --location --request POST 'https://medusa-url.com/admin/orders/{id}/claims' \
--header 'Authorization: Bearer {api_token}' \
--header 'Content-Type: application/json' \
--data-raw '{
    "type": "refund",
    "claim_items": [
      {
        "item_id": "asdsd",
        "quantity": 1
      }
    ]
}'
